home *** CD-ROM | disk | FTP | other *** search
/ Aminet 1 (Walnut Creek) / Aminet - June 1993 [Walnut Creek].iso / aminet / util / edit / jed207.lha / src / regexp.lha / README.jsh < prev    next >
Text File  |  1993-01-16  |  669b  |  23 lines

  1.  
  2. This is a version of the "nearly-public-domain" regexp(3) regular expression
  3. matching library by Henry Spencer, I have modified it slightly to meet my
  4. needs, this is what I've done,
  5.  
  6.     1) if "__STDC__" is defined ANSI function prototypes are used, this is
  7.        so a register based call-interface is possible.
  8.     2) added a new function regsublen(), this performs a dry run of the
  9.        regsub() function returning the length of the string needed to hold
  10.        the output from regsub().
  11.  
  12.  
  13. To make the library execute the command,
  14.  
  15.     dmake [s] [sr] [srp]
  16.  
  17. s   = small data model
  18. sr  = small data, register args
  19. srp = small data, register args, profiling
  20.  
  21.  
  22. John
  23.